home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / video / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  1.1 KB  |  36 lines

  1. #
  2. #  $Revision: 1.4 $
  3.  
  4. include $(ROOT)/usr/include/make/commondefs
  5.  
  6. XMFLAGS= -I$(ROOT)/usr/include/Xm
  7. LLDLIBS= -lXirisw -lvl -lXm -lXt -lX11 -limage -lgl -lm
  8. SFXOFILES = specialfx.o creation.o callbacks.o bxutil-c.o myutils.o
  9.  
  10. TARGETS = specialfx vidtmesh vidpaint trails bigvideoin
  11.  
  12. default all: $(TARGETS)
  13.  
  14. specialfx: $(SFXOFILES)
  15.     $(CCF) $(XMFLAGS) $(SFXOFILES) $(LDFLAGS) -o $@
  16.  
  17. include $(COMMONRULES)
  18.  
  19. # the following is included as comments to provide "pointers" to where this
  20. # gets dumped to if one loads the galileo.sw.demos subsystem
  21. #INST = $(INSTALL) -u demos -g demos
  22. #
  23. #install: default
  24. #    $(INSTALL) -dir /usr/lib/X11/app-defaults
  25. #    $(INSTALL) -f /usr/lib/X11/app-defaults Specialfx
  26. #    $(INST) -dir /usr/demos/bin/video/galileo
  27. #    $(INST) -m 755 -f /usr/demos/bin/video/galileo            \
  28. #            specialfx vidtmesh vidpaint trails bigvideoin    \
  29. #            app1.sh    app2.sh    app3.sh app4.sh app5.sh        \
  30. #            app6.sh    grabndisp.sh grabnsave.sh help.sh    \
  31. #            util1.sh util2.sh
  32. #    $(INST) -f /usr/demos/bin/video/galileo hiwheel.rgb run_specialfx \
  33. #            medwheel.rgb wheel.rgb specialfx_help.scf demo.scf README 
  34.  
  35.